如果要添加大段注释,必须要调用文本编辑器。可以使用 core.editor
选项来修改默认的编辑器[1]。
具体配置
两大编辑器
1 | git config --global core.editor emacs |
注意: mac 下,指定 vim 提交时,在文本编辑界面,命令模式要使用英文输入法才能响应(如果使用中文输入法敲命令,会报警,还会插入命令的字符)
其他编辑器
1 | git config --global core.editor "[your editor] -w" |
-w
通知 Git 使用其他的指定编辑器
macvim
用 macvim 做commit时的编辑器,用 -f
参数能避免下面的提示。(-w
参数无效)
Aborting commit due to empty commit message.
在终端修改 git config 如下:
1 | git config --global core.editor "/bin/mvim -f" |
使用方法
使用 git commit
调用
例子:
1 | touch README.md |